'Declaration Public Overloads Function GetGdiCompatibleGlyphMetrics( _ ByVal fontSize As Single, _ ByVal pixelsPerDip As Single, _ ByVal transform As Nullable(Of Matrix3x2), _ ByVal useGdiNatural As Boolean, _ ByVal glyphIndices() As Short, _ ByVal isSideways As Boolean _ ) As GlyphMetrics()
public GlyphMetrics[] GetGdiCompatibleGlyphMetrics( float fontSize, float pixelsPerDip, Nullable<Matrix3x2> transform, bool useGdiNatural, short[] glyphIndices, bool isSideways )
Parameters
- fontSize
- The ogical size of the font in DIP units.
- pixelsPerDip
- The number of physical pixels per DIP.
- transform
- An optional transform applied to the glyphs and their positions. This transform is applied after the scaling specified by the font size and pixelsPerDip.
- useGdiNatural
- When set to FALSE, the metrics are the same as the metrics of GDI aliased text. When set to TRUE, the metrics are the same as the metrics of text measured by GDI using a font created with CLEARTYPE_NATURAL_QUALITY.
- glyphIndices
- An array of glyph indices for which to compute the metrics.
- isSideways
- A BOOL value that indicates whether the font is being used in a sideways run. This can affect the glyph metrics if the font has oblique simulation because sideways oblique simulation differs from non-sideways oblique simulation.
Return Value
An array of C1.Win.DX.DirectWrite.GlyphMetrics structures filled by this function. The metrics are in font design units.